home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-21 | 953 b | 48 lines | [TEXT/R*ch] |
- #pragma once on
- /*
- ComputerAETE_da.h
- © Bob Boylan 1996
-
- Revision History
- MacHack 1996 initial creation
- */
- #include "ComputerAETE_da.h"
-
- #include <ASRegistry.h>
-
- // -----------------------------------------------------------------
- // ctor
- //
- ComputerAETE_da::ComputerAETE_da()
- {}
-
-
- // -----------------------------------------------------------------
- // dtor
- //
- ComputerAETE_da::~ComputerAETE_da()
- {}
-
-
- // -----------------------------------------------------------------
- // GetProperties
- //
- vector<Prop_da>
- ComputerAETE_da::GetProperties( const DescType inClassID )
- {
- vector<Prop_da> theRetVal;// we have none
- return theRetVal;
- }
- // -----------------------------------------------------------------
- // GetElements
- //
- vector<Elem_da>
- ComputerAETE_da::GetElements( const DescType inClassID )
- {
- vector<Elem_da> theRetVal;
- Elem_da theEle;
- theEle._ID = cFinderProcess; // we just hold processes
- theRetVal.push_back( theEle );
- return theRetVal;
- }
-